home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 223_01 / tolower.c < prev    next >
Text File  |  1980-01-01  |  256b  |  7 lines

  1. /*
  2. ** return lower-case of c if upper-case, else c
  3. */
  4. tolower(c) int c; {
  5.   return(c<='Z' && c>='A' ? c+32 : c);
  6.   }
  7.